home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / etc / grub.d / 20_memtest86+
Text File  |  2008-09-11  |  219b  |  12 lines

  1. #!/bin/bash
  2. set -e
  3.  
  4. if test -e /boot/memtest86+.bin ; then
  5.   echo "Found memtest86+ image: /boot/memtest86+.bin" >&2
  6.   cat << EOF
  7. menuentry "Memory test (memtest86+)" {
  8.     linux    ${GRUB_DRIVE_BOOT}/memtest86+.bin
  9. }
  10. EOF
  11. fi
  12.